930571302559e09799c7362a60f73bf312cd1704,src/test/java/org/springframework/cloud/deployer/spi/cloudfoundry/CloudFoundry2630AndLaterTaskLauncherTests.java,CloudFoundry2630AndLaterTaskLauncherTests,launchTaskWithNonExistentApplicationAndStartingApplicationFails,#,322
Before Change
.application(resource.getFile().toPath())
.buildpack("https://github.com/cloudfoundry/java-buildpack.git")
.command("/bin/nc -l $PORT")
.diskQuota(this.deploymentProperties.getDisk())
.healthCheckType(ApplicationHealthCheck.NONE)
.memory(this.deploymentProperties.getMemory())
.name("test-application")
.noRoute(true)
.noStart(true)
After Change
.application(resource.getFile().toPath())
.buildpack("https://github.com/cloudfoundry/java-buildpack.git")
.command("/bin/nc -l $PORT")
.diskQuota((int) ByteSizeUtils.parseToMebibytes(this.deploymentProperties.getDisk()))
.healthCheckType(ApplicationHealthCheck.NONE)
.memory((int) ByteSizeUtils.parseToMebibytes(this.deploymentProperties.getMemory()))
.name("test-application")
.noRoute(true)
.noStart(true)